macro expansion - определение. Что такое macro expansion
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое macro expansion - определение

PREPROCESSING RULE IN COMPUTER LANGUAGES THAT SPECIFIES HOW AN INPUT TEXT USUALLY IDENTIFIED BY A DEFINABLE KEYWORD OR SEQUENCE IS MAPPED TO A FREQUENTLY LARGER OUTPUT TEXT
Macro language; Macro programming languages; Macro (programming); Parameterized macro; Macro substitution; Software macro; Macroinstruction; Macro instruction; Lisp macro; Macroing; Macro programming language; Macro expansion; Macro-instruction; Lisp macros; Macro programming; Syntactic macro; Procedural macros; Keyboard macro; Mouse macro; Mouse recorder; Open subroutine; Text substitution macros; Soft macro; Hard macro
  • jEdit's]] macro editor
Найдено результатов: 602
Macro (computer science)         
A macro (short for "macro instruction", from Greek combining form "long, large"Oxford English Dictionary, s.v.
Macro-Jê languages         
LANGUAGE FAMILY IN BRAZIL
Macro-Ge Languages; Macro-Ge; Macro Ge; Macro-Ge languages; Macro-Ge language; Macro-Gê; Macro-Gê language; Macro-Jê language; Macro-Jê; Macro-Je languages; Macro-Je language; Macro-Je; Macro-Gê languages; Nuclear Macro-Je languages; Nuclear-Macro-Je languages; Macro Gê; Macro Jê; Macro Je; Proto-Macro-Jê
Macro-Jê (also spelled Macro-Gê) is a medium-sized language stock in South America, mostly in Brazil but also in the Chiquitanía region in Santa Cruz, Bolivia, as well as (formerly) in small parts of Argentina and Paraguay. It is centered on the Jê language family, with most other branches currently being single languages due to recent extinctions.
Macro-Otomákoan languages         
Macro-Otomákoan; Macro-Otomakoan languages
Macro-Otomákoan is a proposal linking three small language families of the Amazon: The Harákmbut (Tuyoneri) family, the extinct Otomakoan languages, and the Trumai language isolate. It was proposed by Kaufman (1990)Kaufman, Terrence.
Macro-Panoan languages         
HYPOTHETICAL PROPOSAL LINKING FOUR LANGUAGE FAMILIES OF PERU, BRAZIL, BOLIVIA, PARAGUAY, AND ARGENTINA
Macro-Panoan
Macro-Panoan is a hypothetical proposal linking four language families of Peru, Brazil, Bolivia, Paraguay, and Argentina that Kaufman (1994) says "seems promising".Kaufman, Terrence.
Macro-Siouan languages         
PROPOSED LANGUAGE FAMILY OF NORTH AMERICA
Macro-Siouan; Macro-siouan; Siouan-Yuchi languages; Siouan–Yuchi languages
The Macro-Siouan languages are a proposed language family that would include the Siouan, Iroquoian, and Caddoan families. Most linguists remain unconvinced that these languages share a genetic relationship, and the existence of a Macro-Siouan language family remains a subject of debate.
Macro-Paesan languages         
Macro-Paezan; Macro-Paesan; Cunza–Kapixanan; Cunza-Kapixanan; Macro-Paezan languages; Macro-Paez; Macro-Paez languages
Macro-Paesan (also spelled Macro-Paezan) is a proposal linking several small families and language isolates of northwest South America. Kaufman (2007) proposes the structure at the right.
Laplace expansion         
N×N DETERMINANT AS SUM OF N MINORS WEIGHTED BY COFACTOR FROM ROW AND COLUMN NOT IN MINOR
Determinant expansion; Expansion by minors; Cofactor expansion
In linear algebra, the Laplace expansion, named after Pierre-Simon Laplace, also called cofactor expansion, is an expression of the determinant of an matrix as a weighted sum of minors, which are the determinants of some submatrices of . Specifically, for every ,
Boole's expansion theorem         
THEOREM IN BOOLEAN ALGEBRA
Shannon's expansion theorem; Shannon cofactor; Shannon's Expansion Theorem; Shannon expansion; Shannon decomposition; Shannon's expansion; Fundamental theorem of Boolean algebra; Boole's expansion; Boole expansion; Boole–Shannon expansion; Boole-Shannon expansion
Boole's expansion theorem, often referred to as the Shannon expansion or decomposition, is the identity: F = x \cdot F_x + x' \cdot F_{x'}, where F is any Boolean function, x is a variable, x' is the complement of x, and F_xand F_{x'} are F with the argument x set equal to 1 and to 0 respectively.
Macro-Mayan languages         
PROPOSAL LINKING THE CLEARLY ESTABLISHED MAYAN FAMILY WITH NEIGHBORING FAMILIES THAT SHOW SIMILARITIES TO MAYAN
Macro-Mayan
Macro-Mayan is a proposal linking the clearly established Mayan family with neighboring families that show similarities to Mayan. The term was apparently coined by McQuown (1942), but suggestions for historical relationships relevant to this hypothesis can be traced back to the Squier (1861), who offered comparisons between Mayan and Mixe-Zoquean languages, and Radin (1916, 1919, 1924), who did the same for Mixe-Zoquean, Huave, and Mayan.
Naevius Sutorius Macro         
PREFECT OF THE PRAETORIAN GUARD (21 BC - 38 AD)
Marco (Roman); Quintus Sutorius Macro; Quintus Naevius Sutorius Macro; Quintus Naevius Cordus Sutorius Macro; Naevius Cordus Sutorius Macro; Sutorius Macro
Quintus Naevius Cordus Sutorius Macro (21 BC – AD 38) was a prefect of the Praetorian Guard, from 31 until 38, serving under the Roman Emperors Tiberius and Caligula. Upon falling out of favour, he killed himself.

Википедия

Macro (computer science)

In computer programming, a macro (short for "macro instruction"; from Greek μακρο- 'long, large') is a rule or pattern that specifies how a certain input should be mapped to a replacement output. Applying a macro to an input is known as macro expansion. The input and output may be a sequence of lexical tokens or characters, or a syntax tree. Character macros are supported in software applications to make it easy to invoke common command sequences. Token and tree macros are supported in some programming languages to enable code reuse or to extend the language, sometimes for domain-specific languages.

Macros are used to make a sequence of computing instructions available to the programmer as a single program statement, making the programming task less tedious and less error-prone. (Thus, they are called "macros" because a "big" block of code can be expanded from a "small" sequence of characters.) Macros often allow positional or keyword parameters that dictate what the conditional assembler program generates and have been used to create entire programs or program suites according to such variables as operating system, platform or other factors. The term derives from "macro instruction", and such expansions were originally used in generating assembly language code.